home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue57 / DragDrop / ExeFormU.dfm / ExeFormU.txt
Encoding:
Text File  |  2000-03-23  |  964 b   |  46 lines

  1. object ExeForm: TExeForm
  2.   Left = 192
  3.   Top = 126
  4.   Width = 339
  5.   Height = 206
  6.   Caption = 'Exe Form'
  7.   Font.Color = clWindowText
  8.   Font.Height = -11
  9.   Font.Name = 'MS Sans Serif'
  10.   Font.Style = []
  11.   PixelsPerInch = 96
  12.   TextHeight = 13
  13.   object Label1: TLabel
  14.     Left = 8
  15.     Top = 40
  16.     Width = 313
  17.     Height = 41
  18.     Alignment = taCenter
  19.     AutoSize = False
  20.     Caption = 
  21.       'Show the other form (with the button above), highlight some text' +
  22.       ' in the memo on that form, then drag it (with the right mouse bu' +
  23.       'tton) onto this edit control.'
  24.     WordWrap = True
  25.   end
  26.   object btnShowOtherForm: TButton
  27.     Left = 8
  28.     Top = 8
  29.     Width = 97
  30.     Height = 25
  31.     Caption = 'Show Other Form'
  32.     TabOrder = 0
  33.     OnClick = btnShowOtherFormClick
  34.   end
  35.   object Edit1: TEdit
  36.     Left = 8
  37.     Top = 88
  38.     Width = 121
  39.     Height = 21
  40.     TabOrder = 1
  41.     Text = 'Edit1'
  42.     OnDragDrop = Edit1DragDrop
  43.     OnDragOver = Edit1DragOver
  44.   end
  45. end
  46.